# Installs {{cookiecutter.project_name}} as a local package. This makes it accessible
# via `import {{cookiecutter.project_name}}` in Python.
-e .

# Adds the whisk cli, directory helpers, etc.
{{cookiecutter.whisk_dependency}}

### whisk project requirements
ipykernel # creating the `{{cookiecutter.project_name}}` kernel
python-dotenv # access env vars defined in a .env file from Python code
dvc # Data Version Control (DVC) for versioning data and pipelines
boto3 # AWS API for S3 bucket management needed for DVC remotes
Flask==1.1.2 # Web service HTTP API
honcho==1.0.1 # Procfile support
gunicorn==20.0.4 # App server for Flask app
invoke==1.4.1 # Project tasks
tox==3.15.0 # Testing the package in insolation and across Python versions
twine==1.14.0 # Package distribution
pytest==4.6.5 # Tests
pytest-runner==5.1 # Tests

### Common Data Science Packages
cloudpickle # For serializing constructs that Pickle can't.
ipython
jupyter
matplotlib
numpy
pandas
plotly
requests
seaborn
scikit-learn
scipy
simplejson
sqlalchemy

### Add project-specific requirements below. ###
